home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2007 January
/
PCWorld_2007-01_cd.bin
/
v cisle
/
widget
/
widget.exe
/
Say_it!-win.widget
/
Say it!1.0.widget
/
Contents
/
Say it!.kon
< prev
next >
Wrap
Text File
|
2006-05-28
|
1KB
|
66 lines
<widget version="1.0" minimumVersion="2.0" debug="off" image="icon.png">
<about-box>
<image>about.png</image>
</about-box>
<window>
<name>main</name>
<title>Say it!</title>
<width>200</width>
<height>200</height>
<image src="square.png">
<vOffset>0</vOffset>
<hOffset>0</hOffset>
</image>
<image src="say0.png">
<name>say0</name>
<vOffset>0</vOffset>
<hOffset>0</hOffset>
<onMouseDown>
button();
speak(txt.data);
</onMouseDown>
</image>
<image src="say1.png">
<name>say1</name>
<vOffset>0</vOffset>
<hOffset>0</hOffset>
<visible>0</visible>
</image>
<textarea data="Type Text Here!">
<name>txt</name>
<alignment>center</alignment>
<color>#ffffff</color>
<width>110</width>
<height>42</height>
<vOffset>20</vOffset>
<hOffset>55</hOffset>
</textarea>
</window>
<action trigger= onLoad>
function button(){
say0.visible = 0;
say1.visible = 1;
unbutton();
}
function unbutton(){
sleep(1)
say0.visible = 1;
say1.visible = 0;
}
</action>
</widget>